home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / hlpdk11.zip / HELPDEMO.HDF < prev    next >
Text File  |  1992-11-26  |  3KB  |  69 lines

  1. ;******************************************************************************
  2. ;                                  HELPDEMO                                   *
  3. ;******************************************************************************
  4.  
  5.  these lines are remark lines, only lines that appear between the help
  6.  definitions directives are processed by the help compiler.
  7.  
  8.  The next section defines a topic called overview. You must have a
  9.  topic like that in your database, it is the entry point of the 
  10.  help database, when the help engine displays the first page of
  11.  the database.
  12.  
  13. ;******************************************************************************
  14. ;                                  overview                                   *
  15. ;******************************************************************************
  16. .entry overview
  17.  
  18.  This is the first line of the overview topic in the help demo database.
  19.  The previous line did not have any ~link~link~, while this one does.
  20.  
  21.  Press the Enter key to view the link topic help page.
  22.  
  23. .end-entry
  24.  
  25.  As can be seen, the only link available from the overview page is a topic
  26.  called link. In the next section we will define the link topic, and
  27.  include 2 links in it. One to the previous link (overview), and an
  28.  additional one - somewhere else.
  29.  
  30. ;******************************************************************************
  31. ;                                    link                                     *
  32. ;******************************************************************************
  33. .entry link
  34.  
  35.  Welcome to the link help page, since this is a demo help database, we
  36.  know that you arrived to this page from the ~overview~overview~ page, 
  37.  by pressing the link hot-link. In this page we will demonstrate the
  38.  ability to include 2 different names (or more) that will take us to the 
  39.  same link.
  40.  
  41.  Example :
  42.  
  43.  Related Topics : ~Topic~topic~
  44.                   ~General~overview~
  45. .end-entry
  46.  
  47.  In the above section we defined 3 links, that are linked to 2 topics, we
  48.  showed that we can reach the same topic from more then one spot in the 
  49.  same topic, using different names.
  50.  
  51.  We will now define the third and final page in the helpdemo database, this
  52.  topic is called topic. Notice that if we did not include this one, the
  53.  helpC help compiler would have told us that there is a link defined,
  54.  that is not defined as a topic.
  55.  
  56. ;******************************************************************************
  57. ;                                    Topic                                    *
  58. ;******************************************************************************
  59. .entry Topic
  60.  
  61.  Well.. it seems as if you succeeded to reach this point by yourself,
  62.  this is the last (3rd) page of the HELPDEMO help database. From this
  63.  help page you can go to the ~previous~link~ help page, or to the
  64.  ~entry~overview~ help page.
  65.  
  66.  Have fun using the help compiler and help engine ..
  67. .end-entry
  68.  
  69.